/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Console', 'Courier New', monospace;
}

body {
    background-color: #111;
    color: #8B0000;
}

/* Navbar Styling */
.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #222;
    padding: 16px 32px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
}

.navbar .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    margin-right: 20px;
}

.navbar .logo-image {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.navbar .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.menu {
    display: flex;
    gap: 15px;
}

.menu a,
.dropbtn {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 16px;
    transition: background-color 0.3s;
}

.menu a:hover,
.dropbtn:hover {
    background-color: #5B0000;
    border-radius: 4px;
}

.menu .active {
    font-weight: bold;
    color: #fff;
    text-decoration: underline;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333; /* Dark red background */
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #8B0000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Centered Image */
.logo-image {
    display: block;
    margin: 0 auto; /* Center the image */
}

/* Hero Section */
.hero-section {
    text-align: center; /* Center the text content */
    margin: 20px auto; /* Add some vertical margin */
}

/* Home Page */
.home-header {
    text-align: center;
    margin-top: 100px;
    font-size: 36px;
    color: #fff;
}

.home-description {
    margin: 20px auto;
    text-align: center;
    max-width: 800px;
    line-height: 1.8;
    font-size: 18px;
    color: #ccc;
}

.featured-content {
    margin-top: 50px;
    text-align: center;
}

.featured-content .cta-button {
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background-color: #8B0000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.featured-content .cta-button:hover {
    background-color: #5B0000;
}

/* Menu Page */
.menu-page h1 {
    font-size: 36px;
    text-align: center;
    margin-top: 100px;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.menu-item {
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: scale(1.05);
}

/* About Us Page */
.about-us-section {
    padding: 120px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.about-us-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-us-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
}

/* Contact Us Page */
.content-container {
    padding: 120px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-container p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
}

.contact-details,
.social-media {
    margin-top: 40px;
    text-align: left;
}

.contact-details .detail,
.social-media ul {
    margin: 20px 0;
}

.contact-details h2,
.social-media h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-details p a,
.social-media ul li a {
    color: #8B0000; /* Dark red for links */
    text-decoration: none;
}

.contact-details p a:hover,
.social-media ul li a:hover {
    text-decoration: underline;
}

.social-media ul {
    list-style-type: none;
    padding: 0;
}

.social-media ul li {
    margin: 5px 0;
}

/* Locations Page */
.locations-header {
    margin-top: 120px;
    text-align: center;
    font-size: 36px;
}

.locations-list {
    margin-top: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.locations-list h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.locations-list p {
    font-size: 18px;
    line-height: 1.6;
}

/* News Page */
.news-container {
    margin-top: 120px;
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    margin-bottom: 40px;
}

.news-item h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.news-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
}

/* Footer */
.footer {
    margin-top: 50px;
    padding: 20px;
    background-color: #222;
    text-align: center;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .menu {
        flex-wrap: wrap;
        gap: 10px;
    }

    .content-container {
        padding: 100px 20px 40px;
    }
}

.menu-content img {
    max-width: 100%; /* Make the image fit within the viewport width */
    height: auto; /* Maintain the aspect ratio */
    display: block; /* Remove extra spaces caused by inline elements */
    margin: 0 auto; /* Center the image */
}
